home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem
- rem SMALL model build
- rem
- if not exist MAKEFILE goto errors
-
- if (%1)==(BCC) goto bcc
- if (%1)==(bcc) goto bcc
- nmake S=S M=1
- if ERRORLEVEL,1 goto errors
- goto end
-
- :bcc
- copy ..\..\..\inc\masm.inc
- copy ..\..\..\inc\model.inc
- make BCC=1 S=s M=1 CINC=%include%
- if ERRORLEVEL,1 goto errors
- goto end
-
- :errors
- echo There was an error in this build!
- pause
-
- :end
-